home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / EmacsTeX / aa_m68k_Intel_Only / TeXmenu4.1 / Src / Converter / 850ToNeXTSTEP next >
Encoding:
Text File  |  1995-06-12  |  368 b   |  17 lines

  1. #!/bin/sh
  2. #    
  3. #    Umwandlung von Code-Seite 850 (MessyDOS) nach 
  4. #    NeXTSTEP Encoding
  5. #     
  6. #    Harald Schlangmann 1992
  7. #    
  8. #    ue  ae  oe  Ae  Oe  Ue  sz
  9. #
  10.  
  11. if [ "$1" = "" ]
  12.   then
  13.     tr '\201\204\224\216\231\232\341' '\366\331\360\205\226\232\373' | tr -d '\015\032'
  14.   else
  15.     cat $1 | tr '\201\204\224\216\231\232\341' '\366\331\360\205\226\232\373' | tr -d '\015\032'
  16.   fi
  17.